File: /home/undanet/www/wp-content/themes/panoramic/library/includes/woocommerce-inc.php
<?php
// Ensure cart contents updates when products are added to the cart via AJAX
function panoramic_wc_header_add_to_cart_fragment( $fragments ) {
ob_start();
get_template_part( 'library/template-parts/header-cart-contents' );
$fragments['a.header-cart-contents'] = ob_get_clean();
return $fragments;
}
if ( get_theme_mod( 'panoramic-woocommerce-header-cart-auto-update', true ) ) {
add_filter('woocommerce_add_to_cart_fragments', 'panoramic_wc_header_add_to_cart_fragment');
}